home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 October: Windmill on DISC / ADC Developer CD (1993-10) (''Windmill On DISC'')_iso / Dev.CD Oct 93.iso / System Software / U.S. System Software / System 7 Pro™ Beta 11 / Development Tools / Sample Code / Messaging Service Access Module / Internet PMSAM / Internet PMSAM source / parser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-03  |  475 b   |  14 lines  |  [TEXT/MPS ]

  1. #pragma once
  2. #define __GW_PARSER__
  3.  
  4. short CountLines(char *text);
  5. short CountCRLines(char *text);
  6. void GetWord(char **word,char **text);
  7. void GetField(char **word,char **text,char delimiter,short *dataLength);
  8. void GetLine(char **line,char **text);
  9. void GetNumber(long *number,char **text);
  10. void StripLF(char *text,unsigned long *textLength);
  11. void CopyWord(char *dest,char *sourceStream);
  12. void CopyLine(char *dest,char *sourceStream);
  13. OSErr AddLF(char *preLF,char **postLF);
  14.